home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / xmmlrg.exe / XMMHNDLR.H < prev    next >
C/C++ Source or Header  |  1991-09-05  |  1KB  |  24 lines

  1. /*************************************************************************
  2. *                                                                        *
  3. *     XMMHandler - Access XMM for storing / accessing db_Vista records         *
  4. *                                                                                                  *
  5. *     This file is the external definitions used by the library caller         *
  6. *                                                                                                  *
  7. *                      Used by the PARSER to eliminate IO during processing         *
  8. *                                                                                                  *
  9. *     Author:        Tom Frank, BIMCO                                                         *
  10. *                                                                        *
  11. *************************************************************************/
  12.  
  13. typedef int XHandle;
  14.  
  15. extern int XMMErrorCode;
  16.  
  17. int InitXMMSystem(int MaxHandles);
  18. int ShutXMMSystem(void);
  19. XHandle AllocateXMMArea(long MaxRecs, int RecSize);
  20. int DeAllocateXMMArea(XHandle hnd);
  21. int GetXMMRecord(XHandle hnd, long recno, void *buffer);
  22. int CheckXMMRecord(XHandle hnd, long recno);
  23. int PutXMMRecord(XHandle hnd, long recno, void *buffer);
  24.